home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / protos / regexmodule_protos.h < prev    next >
Text File  |  1996-12-15  |  954b  |  17 lines

  1.  
  2. /* regexmodule.c */
  3. static void reg_dealloc ( regexobject *re );
  4. static PyObject *makeresult ( struct re_registers *regs );
  5. static PyObject *reg_match ( regexobject *re , PyObject *args );
  6. static PyObject *reg_search ( regexobject *re , PyObject *args );
  7. static PyObject *reg_group ( regexobject *re , PyObject *args );
  8. static PyObject *reg_getattr ( regexobject *re , char *name );
  9. static PyObject *newregexobject ( PyObject *pattern , PyObject *translate , PyObject *givenpat , PyObject *groupindex );
  10. static PyObject *regex_compile ( PyObject *self , PyObject *args );
  11. static PyObject *symcomp ( PyObject *pattern , PyObject *gdict );
  12. static PyObject *regex_symcomp ( PyObject *self , PyObject *args );
  13. static int update_cache ( PyObject *pat );
  14. static PyObject *regex_match ( PyObject *self , PyObject *args );
  15. static PyObject *regex_search ( PyObject *self , PyObject *args );
  16. static PyObject *regex_set_syntax ( PyObject *self , PyObject *args );
  17.